Skip to content

Latest commit

 

History

History
98 lines (86 loc) · 2.87 KB

self-hosting.mdx

File metadata and controls

98 lines (86 loc) · 2.87 KB
title description subtitle hideToc
Self-Hosting
Host Supabase on your own infrastructure.
Host Supabase on your own infrastructure.
true

There are several ways to host Supabase on your own computer, server, or cloud.

Officially supported

{official.map((x) => (
{x.description}
))}

export const official = [ { name: 'Docker', description: 'Deploy Supabase within your own infrastructure using Docker Compose.', href: '/guides/self-hosting/docker', }, { name: 'BYO Cloud', description: 'Contact our Enterprise sales team if you need Supabase managed in your own cloud.', href: '/pricing', }, ]

Supabase is also a hosted platform. If you want to get started for free, visit supabase.com/dashboard.

Community supported

There are several community-driven projects to help you deploy Supabase. We encourage you to try them out and contribute back to the community.

{community.map((x) => (
{x.description}
))}

export const community = [ { name: 'Kubernetes', description: 'Helm charts to deploy a Supabase on Kubernetes.', href: 'https://github.com/supabase-community/supabase-kubernetes', }, { name: 'Terraform', description: 'A community-driven Terraform Provider for Supabase.', href: 'https://github.com/supabase-community/supabase-terraform', }, { name: 'Traefik', description: 'A self-hosted Supabase setup with Traefik as a reverse proxy.', href: 'https://github.com/supabase-community/supabase-traefik', }, { name: 'AWS', description: 'A CloudFormation template for Supabase.', href: 'https://github.com/supabase-community/supabase-on-aws', }, ]

Third-party guides

The following third-party providers have shown consistent support for the self-hosted version of Supabase:.

{[ { name: 'Digital Ocean', description: 'Deploys using Terraform.', href: 'https://docs.digitalocean.com/developer-center/hosting-supabase-on-digitalocean/', }, { name: 'StackGres', description: 'Deploys using Kubernetes.', href: 'https://stackgres.io/blog/running-supabase-on-top-of-stackgres/', }, ].map((x) => (
{x.description}
))}